home *** CD-ROM | disk | FTP | other *** search
/ Aminet 52 / Aminet 52 (2002)(GTI - Schatztruhe)[!][Dec 2002].iso / Aminet / dev / gg / ZThread-2.2.6.lha / README < prev    next >
Text File  |  2002-06-11  |  4KB  |  88 lines

  1.  
  2.   I'd like to create a list of projects that use or have used ZThreads; many
  3.   of you have already contacted me and I am very grateful for that. I think it
  4.   might be intresting for other people to see who as used ZThreads and for what
  5.   so if you'd like to get your project listed send me some mail. 
  6.  
  7. ------------------------------------------------------------------------------
  8.  
  9.                                ZTHREADS 2.2.6
  10.                                by Eric Crahen 
  11.                            <crahen@cs.buffalo.edu>
  12.                         http://zthread.sourceforge.net
  13.  
  14.  
  15. OVERVIEW:
  16.  
  17.     Concurrency has become an increasingly important aspect of software today. 
  18.   The ZThread package is an advanced object-oriented, cross-platform, C++ 
  19.   threading and synchronization library that has been designed and implemented 
  20.   by the author and released under the GPL. It provides a high level 
  21.   abstraction of the native threading mechanisms to offer a great deal of 
  22.   flexibility and control. 
  23.  
  24.     This software features interruptible Thread and Runnable objects for C++, 
  25.   control objects and implementations of concurrency design patterns. This 
  26.   includes semaphores, mutexes, condition variabes as well as other more 
  27.   complex components.
  28.  
  29.     Existing threading APIs do not provide a consistent and portable means for 
  30.   exercising control over concurrently executing software. Thread cancellation and termination is 
  31.   one example of this complexity. ZThreads includes an elegant method of 
  32.   safely terminating threads without the complications of using cancellation 
  33.   handlers or other similar constructs. 
  34.  
  35.     This is a platform independent architecture that was designed by the 
  36.   author. Implementations have been provided for POSIX and Win32 platforms. 
  37.   Building this library was quite different for POSIX than it was for Win32 
  38.   due to the nature of the functionality each platform naturally provides; 
  39.   each platform had strong and weak points. They were used to create the most 
  40.   flexible and efficent abstraction possible. 
  41.  
  42.     The result is an excellent software layer on which to build mutlithreaded 
  43.   code. 
  44.  
  45. LICENSE:                
  46.  
  47.     This source has been released under the LGPL. See LGPL.TXT for
  48.   details regarding the license. You can you use this in closed source
  49.   projects, contact me if you need to discuss a different licencing.  
  50.  
  51. COMPILING:
  52.  
  53.     ZT_POSIX, ZT_WIN32 should be defined to specific what platofrm your building
  54.   on this. This is mainly so the right modifiers can be placed on class and 
  55.   function definitions to export things from a DLL properly if your using the
  56.   WIN32 implementation. If you leave these flags out ZThreads will try to guess.
  57.  
  58.     See BUILDING for more details.
  59.  
  60. DISTRIBUTION:
  61.   
  62.     If you package ZThreads with your application, that fine with me. You can
  63.   do it in binary form or source form. Don't forget to mention somewhere in
  64.   your documents the LGPL & the credits for the library.
  65.  
  66.     In the case of development or source release it would be nice if you 
  67.   pointed the other developers to the source distribution of this library.
  68.   This keeps things a little more centralized & current; as well as giving
  69.   this library a little more exposure.
  70.  
  71. **  
  72.  
  73.    If you find this library useful, or you release something that uses it, 
  74.   please let me know. I'd be curious to see how people have made use of
  75.   this library.
  76.  
  77. **
  78.  
  79. NOTES:
  80.  
  81.   Please report bugs to me via email
  82.  
  83. HISTORY:
  84.  
  85.   So far, this library has been tested on Linux, Tru64 Unix, Win95, Win98, 
  86.   WinNT, Win2k, SunOS, Solaris and FreeBSD. 
  87.  
  88.